home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / bash / bash_110 / unixmode / src_d3.zoo / patches.zoo / lib / glob / Makefile.cross
Encoding:
Makefile  |  1991-10-22  |  243 b   |  15 lines

  1. # Makefile for glob source is in -*- text -*- mode.
  2.  
  3. RM = rm -f
  4.  
  5. glob.olb: glob.o tilde.o
  6.     $(RM) -f $@
  7.     $(AR) cr $@ glob.o tilde.o
  8.     $(RANLIB) glob.olb
  9.  
  10. tilde-test: tilde.c
  11.     $(CC) $(CFLAGS) -o tilde-test -DTEST tilde.c
  12. clean:
  13.     $(RM) *.o *.olb
  14.  
  15.